home *** CD-ROM | disk | FTP | other *** search
/ Delphi Programmer's Power Pack / Delphi Volume 1.iso / e_to_l / gforms / demo2.pas < prev    next >
Pascal/Delphi Source File  |  1996-09-15  |  830b  |  39 lines

  1. unit Demo2;
  2.  
  3. interface
  4.  
  5. uses
  6.   SysUtils, WinTypes, WinProcs, Messages, Classes, Graphics, Controls,
  7.   Forms, Dialogs, GFormSav;
  8.  
  9. type
  10.   TMDIChild = class(TForm)
  11.     FormSaver1: TFormSaver;
  12.     procedure FormCreate(Sender: TObject);
  13.     procedure FormClose(Sender: TObject; var Action: TCloseAction);
  14.   private
  15.     { Private declarations }
  16.   public
  17.     { Public declarations }
  18.   end;
  19.  
  20. var
  21.   MDIChild: TMDIChild;
  22.  
  23. implementation
  24.  
  25. {$R *.DFM}
  26.  
  27. procedure TMDIChild.FormCreate(Sender: TObject);
  28. begin
  29.   Caption := Caption + ' ' + IntToStr (Application.MainForm.MDIChildCount);
  30.   FormSaver1.IniSection := FormSaver1.IniSection + '.' + IntToStr (Application.MainForm.MDIChildCount);
  31. end;
  32.  
  33. procedure TMDIChild.FormClose(Sender: TObject; var Action: TCloseAction);
  34. begin
  35.   Action := caFree;
  36. end;
  37.  
  38. end.
  39.